home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / IDimager Personal 4.2.0.3 / setup_IDimager_Personal_V4.exe / {app} / web / register.psc < prev    next >
Text File  |  2008-06-07  |  2KB  |  87 lines

  1. <html>
  2.  
  3. <head>
  4.   <title>Register</title>
  5.  
  6.   <link rel="stylesheet" href="idimager.css" type="text/css"/>
  7.  
  8.   <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  9.  
  10.   %include api.inc %/include
  11.  
  12.   <style>
  13.     %include idimager.css %/include
  14.   </style>
  15.  
  16. </head>
  17.  
  18. <body>
  19.  
  20. <form method="POST"
  21.       action="%var:PageOffset/handleregister.psc"
  22. >
  23. <strong>
  24. <p>At this page you can request a login name for %var:HomePage.</p>
  25. <p>After your request, a mail will be sent out to the administrator of this website who will 
  26. respond to the request as soon as possible. Once your request has been handled, you'll receive a confirmation mail at the mail address
  27. you specify below. Please make sure that you enter your correct mail address or you won't receive the confirmation message.
  28. </p></strong>
  29. <p>
  30.  
  31. %code
  32.  
  33. if Request.Params.Values['Help'] <> '' then
  34. begin
  35.   result := '<span class="alarm">' + Request.Params.Values['Help'] + '</span><p>';
  36. end;
  37.  
  38. %/code
  39.  
  40.   <table width="800">
  41.     <tr>
  42.       <td width="150" valign="top">Your full name</td>
  43.       <td>
  44.         <input type="text" name="dfName" value="" size="80"><br>
  45.       </td>
  46.     </tr>
  47.     <tr>
  48.       <td width="150" valign="top">Please explain who you are and why you think you should be granted access</td>
  49.       <td>
  50.         <textarea name="mmWhoAreYou" cols="40" rows="4"></textarea><br>
  51.       </td>
  52.     </tr>
  53.     <tr>
  54.       <td width="150" valign="top">Your e-mail address</td>
  55.       <td>
  56.         <input type="text" name="dfEMail" value="" size="30"><br>
  57.       </td>
  58.     </tr>
  59.     <tr>
  60.       <td width="150" valign="top">Your username</td>
  61.       <td>
  62.         <input type="text" name="dfUsername" value="" size="30"><br>
  63.       </td>
  64.     </tr>
  65.     <tr>
  66.       <td width="150" valign="top">Your password</td>
  67.       <td>
  68.         <input type="password" name="dfPassword" value="" size="30"><br>
  69.       </td>
  70.     </tr>
  71.     <tr>
  72.       <td width="150" valign="top">Repeat password</td>
  73.       <td>
  74.         <input type="password" name="dfPassword2" value="" size="30"><br>
  75.       </td>
  76.     </tr>
  77.     <tr>
  78.       <td> </td>
  79.       <td><input type="submit" value="Request access to this website"></td>
  80.     </tr>
  81.   </table>
  82. </form>
  83.  
  84. </body>
  85.  
  86. </html>
  87.